home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / E-P-O.ZIP / TEST-1.POV < prev    next >
Encoding:
Text File  |  1996-10-31  |  1.1 KB  |  41 lines

  1.  
  2. //------------------------------------------------------------------->
  3. //
  4. // test-1.pov
  5. //
  6. // "Easy POV Oven"
  7. //
  8. // Written By: Paul T. Dawson
  9. //             ptdawson@voicenet.com
  10. //             http://www.voicenet.com/~ptdawson
  11. //
  12. // All code and techniques are PUBLIC DOMAIN - have fun with it!
  13. //
  14. //------------------------------------------------------------------->
  15. //
  16. // This file is for testing the "Thing_1" object only.
  17. //
  18. //------------------------------------------------------------------->
  19. //
  20. // All of the usual initializing.
  21.  
  22.         #include "colors.inc"
  23.         #include "textures.inc"
  24.         #include"metals.inc"
  25.         background { Gray10 }
  26.         camera { location < 0, 5, -5 > look_at <0,-1.3,0> }
  27.         light_source { < 0, 10, -10 > color rgb < 2, 2, 2 > }
  28.  
  29. //------------------------------------------------------------------->
  30. //
  31. // Build it and show it.
  32.  
  33.         #include "thing-1.inc"
  34.  
  35.         object { Thing_1 }
  36.  
  37. //------------------------------------------------------------------->
  38. //
  39. // End of this file.
  40.  
  41.